What is the average age of men

Age Column

Question: What is the average age of men?

Example

# Example DataFrame
data = {'column_name': [2, 6, 2, 8, 4, 0, 1, 5, 7]}
df = pd.DataFrame(data)

# Calculate the average of the 'column_name' column
average = df['column_name'].mean()